home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / info-service / gopher / Unix / gateways / techinfo / techinpher / start-techinpher < prev    next >
Encoding:
Text File  |  1993-03-01  |  336 b   |  14 lines

  1. #!/bin/csh -f
  2.  
  3.  
  4. cd /usr/local/techinfo/techinpher/admin
  5. loop:
  6.     ./techinpher -d -p 9001 >& out
  7.     set timestr = `date '+%h%d.%T.'`
  8.     mv -f core "core.$timestr"
  9.     mv -f out "out.$timestr"
  10.     /usr/ucb/mail -s "TechInpher gateway exited unexpectedly, core saved as core.$timestr" penninfo-gopher@dccs.upenn.edu < /dev/null
  11.     sleep 600
  12.     goto loop
  13.  
  14.